/* Golbal Styles */

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --blue: #1e1fa1;
    --gray: #5f5f5f;
}

body {
    background: white;
    overflow-x: hidden;
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    width: 100%;
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    display: inline-block;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    transition: 0.25s;
    font-size: 1vw;
}

button {
    cursor: pointer;
    font-size: 1vw;
    padding: 0.8vw 2vw;
    font-family: "Montserrat", sans-serif;
}

section {
    width: 100%;
    padding: 10%;
}

h1,
h2 {
    font-size: 2.5vw;
    font-weight: 700;
    line-height: 1;
}

h3 {
    font-size: 2vw;
    font-weight: 600;
    line-height: 1;
}

p {
    font-size: 1vw;
}

ul,
li {
    font-size: 1vw;
}

i {
    font-size: 1vw;
}

@keyframes background_animation {
    from {
        background-size: 0%;
    }
    to {
        background-size: 400%;
    }
}

@media (max-width: 996px) {
    section {
        padding: 20% 10%;
    }
    h1,
    h2 {
        font-size: 7vw;
        text-align: center;
    }
    h3 {
        font-size: 5vw;
        text-align: left;
    }
    p {
        text-align: left;
    }
    p,
    ol,
    ul {
        font-size: 3.5vw;
    }
    ul,
    li {
        font-size: 3.5vw;
    }
    i {
        font-size: 6vw;
    }
    button {
        padding: 3vw 8vw;
        font-size: 3.5vw;
    }
    a {
        font-size: 3.5vw;
    }
}


/* header */

.desktop_header {
    background-color: var(--blue);
    padding: 1vw;
}

.header_box {
    display: flex;
    justify-content: space-evenly;
}

.header_box a {
    display: flex;
    gap: 0.5vw;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s;
}

.header_box a:hover i {
    color: white;
    background-color: var(--blue);
}

.header_box i {
    border: 0.2vw solid white;
    background-color: white;
    padding: 0.3vw;
    transition: all 0.4s;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
}

@media (max-width: 996px) {
    .desktop_header {
        padding: 5vw;
    }
    .header_box {
        flex-direction: column;
        gap: 3vw;
    }
    .header_box i {
        flex-direction: column;
        gap: 3vw;
        justify-content: center;
        font-size: 4vw;
        padding: 1vw;
    }
    .header_box a {
        font-size: 3vw;
        gap: 0.8vw;
    }
}


/** footer **/

footer {
    padding: 19% 0 0 0;
    position: relative;
}

footer svg {
    top: 0;
    position: absolute;
}

.footer_box {
    display: grid;
    gap: 2vw;
    grid-template-columns: 49% 49%;
    padding: 5%;
    background-color: var(--blue);
}

.footer_box .qr_ctn {
    width: 50%;
    justify-self: flex-end;
}

.footer_box .qr_ctn p {
    color: white;
    font-size: .8vw;
}

.footer_box .contact_ctn {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.footer_box .contact_ctn h2 {
    color: white;
}

.footer_box .logo_ctn {
    width: 20%;
}

.footer_box .contact_ctn ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer_box .contact_ctn ul i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
    padding: 0.5vw;
    transition: all 0.4s;
    border: 0.2vw solid white;
    border-radius: 50%;
    background-color: white;
}

.footer_box .contact_ctn ul a {
    color: white;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 0.5vw;
}

.footer_box .contact_ctn ul a:hover i {
    color: white;
    background-color: var(--blue);
}

@media (max-width: 996px) {
    .footer_box {
        grid-template-columns: 100%;
        gap: 10vw;
    }
    .footer_box .qr_ctn {
        width: 75%;
        margin: auto;
    }
    .footer_box .qr_ctn p {
        font-size: 2.8vw;
        text-align: center;
    }
    .footer_box .logo_ctn {
        width: 60%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer_box .logo_ctn a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer_box .logo_ctn img {
        width: 60%;
    }
    .footer_box .contact_ctn {
        gap: 5vw;
    }
    .footer_box .contact_ctn ul {
        align-items: center;
        gap: 5vw;
        padding: 0;
    }
    .footer_box .contact_ctn ul li {
        width: 100%;
    }
    .footer_box .contact_ctn ul a {
        gap: 4vw;
        margin: auto;
    }
    .footer_box .contact_ctn ul i {
        font-size: 5vw;
        padding: 2vw;
    }
}